Multivariable Procedures
Function: calcplot procedures: dxdyplot, dydxplot - plot a 2D region described in Cartesian coordinates
Calling Sequence:
dxdyplot
dydxplot
Parameters:
The variable names
and
must be used.
- expressions in the variable y.
- expressions in the variable
- symbolic constants, such as
, integers, or real floating point numbers.
opts -a sequence of plot options.
Description:
Examples:
| > | restart: with(calcplot):with(student): |
|
|
||||||
|
|
Function: calcplot procedures: dxdydzplot, dxdzdyplot, dydxdzplot, dydzdxplot, dzdxdyplot, dzdydxplot - plot the boundary of a solid region described in Cartesian coordinates.
Calling Sequence:
dxdydzplot![]()
![]()
dxdzdyplot![]()
![]()
dydxdzplot![]()
![]()
dydzdxplot![]()
![]()
dzdxdyplot![]()
![]()
dzdydxplot![]()
![]()
Parameters:
The variable names
and
must be used.
- two-variable expressions.
- one-variable expressions.
- symbolic constants, such as
, integers, or real floating point numbers.
- a sequence of
plot3d opt
ions.
Description:
Examples:
| > | restart: with(calcplot):with(student): |
| > | x1:=sqrt(9-y^2): |
|
|
|||||
|
|
Function: calcplot[regionplot2d] -plots images of regions under arbitrary coordinate transformations
Calling Sequence:
regionplot2d![]()
![]()
Parameters:
- expressions in the variable u.
- a list of expressions in the variables u and v.
- symbolic constants, such as
, integers, or real floating point numbers.
- a sequence of
plot options
.
Description:
Examples:
| > | restart: with(calcplot):MathMaple:-ini(): _EnvExplicit:=true: |
a) Find the centroid of the first quadrant region in the
-plane that is bounded by the curves
and
Solution
a)
| > | eq1:=u=x*y: eq2:=v=x^3*y:eq1,eq2; |
Solving for
and
, we obtain
| > | sol:=solve([%],[x,y]):%; |
We select the positive values.
| > | x:=unapply(subs(sol[1],x),u,v):y:=unapply(subs(sol[1],y),u,v): |
regionplot2d
plots the image of a region in the
|
|
||||||
We calculate the Jacobian
|
|||||||